*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── Focus rings ── */
:focus-visible {
  outline: 2px solid #557330;
  outline-offset: 3px;
  border-radius: 3px;
}
.gate-card input:focus-visible,
.gate-card .btn-enter:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 2px;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 99999;
  background: #333c30; color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-size: .85rem; letter-spacing: .08em; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Screen-reader only utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

html { scroll-behavior: smooth; background: #F6EFF3; }

/* ── Moodboard palette · David & Yidi · Wedding 2026 ── */
:root {
  --ivory:       #F5F0E8;   /* porcelain ivory · body bg        */
  --blush:       #EDDEE6;   /* sandstone blush · primary tone   */
  --green:       #557330;   /* cypress green · nature accent    */
  --red:         #8E2430;   /* oxblood red · ceremonial         */
  --gold:        #B89245;   /* antique gold · metallic detail   */
  --ink:         #222222;   /* ink black · type & contrast      */
  --card-bg:     #FDFAF6;   /* warm white for card surfaces     */
  --border-soft: rgba(34,34,34,0.10);
  /* Legacy aliases so inline HTML styles still resolve */
  --cream:  var(--ivory);
  --cream2: var(--card-bg);
  --yellow: var(--ivory);
  --coral:  var(--gold);
  --navy:   var(--ink);
  --mint:   var(--green);
  --pink:   var(--blush);
}

body {
  font-family: 'Jost', sans-serif;
  background: #F6EFF3;
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Ambient orbs · green & gold ── */
body::before {
  content: ''; position: fixed;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: var(--green);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.12; pointer-events: none; z-index: 0;
  animation: blobA 14s ease-in-out infinite alternate;
}
body::after {
  content: ''; position: fixed;
  bottom: -80px; left: -100px;
  width: 380px; height: 380px;
  background: var(--gold);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  opacity: 0.10; pointer-events: none; z-index: 0;
  animation: blobB 18s ease-in-out infinite alternate;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@keyframes blobA { to { border-radius: 40% 60% 50% 50% / 70% 30% 70% 30%; transform: translate(-20px, 30px) rotate(12deg); } }
@keyframes blobB { to { border-radius: 60% 40% 60% 40% / 40% 70% 30% 60%; transform: translate(30px, -20px) rotate(-8deg); } }

/* ══ GATE · full-bleed photo hero ══ */
#gate {
  position: fixed; inset: 0; z-index: 9999;
  /* anchor photo to bottom so couple shows at bottom, sky at top */
  background: #87CEEB url('denmark.jpg') center 35% / cover no-repeat;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 6vh;
  padding-left: 1.5rem; padding-right: 1.5rem;
}
/* very light overlay at top only · sky is already light/blue */
#gate::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(135,180,200,0.18) 0%,
    rgba(100,150,170,0.08) 40%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 0;
}
#gate.hidden { display: none; }
.gate-card {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 520px; width: 100%;
}
.gate-card .eyebrow {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 999px;
  margin-bottom: 1.25rem;
}
.gate-card h2 {
  font-family: 'Yesteryear', cursive;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 400; font-style: normal;
  color: #fff;
  line-height: 1; margin-bottom: 0.6rem; letter-spacing: .04em;
  text-shadow: 0 1px 12px rgba(60,100,120,0.25);
}
.gate-card h2 em { font-style: normal; color: rgba(255,255,255,0.8); }
.gate-card .gate-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 2.25rem;
  letter-spacing: .05em;
}
.gate-card input {
  width: 50%; padding: 13px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 4px; color: #fff;
  font-size: .88rem; font-family: 'Jost', sans-serif;
  text-align: center; outline: none; letter-spacing: .18em;
  transition: border-color .25s, background .25s;
}
.gate-card input::placeholder { color: rgba(255,255,255,0.45); letter-spacing: .1em; }
.gate-card input:focus { border-color: #fff; background: rgba(255,255,255,0.18); }
.gate-card .btn-enter {
  width: 50%; padding: 13px; margin-top: 10px;
  background: transparent;
  color: #fff; border: 1px solid rgba(255,255,255,0.65);
  border-radius: 4px;
  font-size: .78rem; font-family: 'Jost', sans-serif; font-weight: 400;
  cursor: pointer; letter-spacing: .24em; text-transform: uppercase;
  transition: background .25s, border-color .25s;
}
.gate-card .btn-enter:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.gate-card .error { color: rgba(255,210,195,0.95); margin-top: 12px; font-size: .83rem; min-height: 18px; }
.gate-card .hint  { margin-top: 1.25rem; color: rgba(255,255,255,0.38); font-size: .73rem; letter-spacing: .06em; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: #F6EFF3;
  border-bottom: 0.5px solid rgba(34,34,34,0.18);
}
.nav-logo {
  font-family: 'Yesteryear', cursive;
  font-size: 1.8rem; font-weight: 400; font-style: normal;
  color: #333c30; text-decoration: none; letter-spacing: .04em;
  white-space: nowrap;
}
.nav-logo em { color: var(--gold); }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(34,34,34,0.72);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: #6a9040; }
.nav-links .nav-lang a {
  border: 1px solid rgba(34,34,34,0.35);
  border-radius: 3px; padding: 6px 14px;
  color: var(--ink);
}
.nav-links .nav-lang a:hover { border-color: var(--green); color: #6a9040; background: rgba(85,115,48,0.05); }

/* ── Hamburger toggle · hidden on desktop, shown below 860px ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px; height: 38px;
  background: transparent;
  border: 1px solid rgba(34,34,34,0.3);
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  transition: border-color .25s;
}
.nav-toggle:hover { border-color: var(--green); }
.nav-toggle .bar {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 860px) {
  nav { padding: 14px 22px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #F6EFF3;
    border-bottom: 0.5px solid rgba(34,34,34,0.18);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height .3s ease, visibility 0s linear .3s;
  }
  .nav-links.open {
    max-height: 80vh;
    visibility: visible;
    transition: max-height .3s ease, visibility 0s linear 0s;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: .8rem;
    letter-spacing: .16em;
    border-bottom: 0.5px solid rgba(34,34,34,0.08);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-lang { padding: 12px 24px; border-bottom: none; text-align: center; }
  .nav-links .nav-lang a {
    display: inline-block;
    padding: 8px 22px;
    font-size: .8rem;
    border-bottom: 1px solid rgba(34,34,34,0.35);
    border: 1px solid rgba(34,34,34,0.35);
    border-radius: 3px;
  }
}
@media (max-width: 420px) {
  nav { padding: 12px 18px; }
  .nav-logo { font-size: 1.5rem; }
}


/* ══ SIDE NAV · floating left ══ */
.side-nav {
  position: fixed;
  left: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.side-nav a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: rgba(51,60,48,0.55);
  font-size: 9px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 0;
  transition: color .25s;
  white-space: nowrap;
}
.side-nav a::before {
  content: '';
  display: block; width: 18px; height: 0.5px;
  background: currentColor;
  transition: width .25s;
  flex-shrink: 0;
}
.side-nav a:hover,
.side-nav a.active {
  color: #333c30;
}
.side-nav a:hover::before,
.side-nav a.active::before {
  width: 28px;
}
@media (max-width: 1100px) { .side-nav { display: none; } }

/* ══ PAGE WRAP ══ */
.page {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
  padding: 0 2rem 4rem;
}

.header-img {
  width: 100%; display: block; margin: 0 auto;
  max-height: 420px; object-fit: contain;
  margin-top: 5rem;
}

/* ── Section dividers ── */
section {
  position: relative; z-index: 1;
  display: flow-root; /* contain floated section images */
  padding: 4.5rem 0 1.5rem;
  border-top: 0.5px solid rgba(34,34,34,0.14);
}
section:first-of-type { border-top: none; }

/* ── Eyebrow · thin outlined, editorial ── */
.eyebrow {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(184,146,69,0.75);
  color: #6B5018;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 2px;
  margin-bottom: 1.1rem;
}

/* ── Section titles · Bodoni Moda, editorial ── */
h2.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 300; color: var(--green);
  line-height: 1; margin-bottom: 0.9rem; letter-spacing: .03em;
}
h2.section-title em {
  font-style: italic;
  color: var(--green);
  background: linear-gradient(to bottom, transparent 88%, rgba(184,146,69,0.45) 78%);
  padding: 0 3px;
}
p.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: rgba(34,34,34,0.75); margin-bottom: 2rem; line-height: 1.65;
  max-width: 560px;
}

/* ══ HERO ══ */
#hero { padding-top: 3rem; text-align: center; border-top: none; }
.hero .eyebrow {
  border-color: rgba(34,34,34,0.22);
  color: rgba(34,34,34,0.6);
  letter-spacing: .3em;
}
.hero h1 {
  font-family: 'Yesteryear', cursive;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 300; font-style: normal; line-height: 1.02;
  color: #333c30;
  background: none;
  -webkit-background-clip: unset; background-clip: unset;
  margin: 1.5rem 0 1.25rem; letter-spacing: .06em;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero .date-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; font-style: italic;
  color: rgba(34,34,34,0.7); margin-bottom: 0.5rem; line-height: 2;
  letter-spacing: .04em;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 1.35rem; color: rgba(51,60,48,0.6);
  letter-spacing: .05em; margin-bottom: 1.85rem;
}
.date-line a { color: var(--ink); text-decoration-color: rgba(184,146,69,0.3); transition: color .2s; }
.date-line a:hover { color: #6a9040; }

/* ── Countdown ── */
.countdown {
  display: flex; gap: 1px; justify-content: center;
  margin-top: 2rem; flex-wrap: wrap;
  border: 1px solid rgba(34,34,34,0.18);
  border-radius: 14px; overflow: hidden;
  max-width: 340px; margin-left: auto; margin-right: auto;
}
.cd-box {
  flex: 1; min-width: 76px;
  background: transparent; padding: 16px 10px;
  text-align: center; border-right: 1px solid rgba(34,34,34,0.14);
  transition: background .2s;
}
.cd-box:last-child { border-right: none; }
.cd-box:hover { background: rgba(184,146,69,0.05); }
.cd-box .num {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.9rem; font-weight: 300; color: var(--green); line-height: 1;
}
#cd-s { color: var(--gold); }
.cd-box .lbl {
  font-size: 9px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(34,34,34,0.55); margin-top: 6px;
}

.scroll-hint {
  margin-top: 2.5rem; color: rgba(34,34,34,0.55);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  animation: gentlePulse 3s 1.6s ease-in-out infinite;
}
@keyframes gentlePulse {
  0%,100% { opacity: .35; transform: translateY(0); }
  50%      { opacity: .75; transform: translateY(5px); }
}

/* ══ CARDS ══ */
.card {
  background: transparent;
  border: 1px solid rgba(34,34,34,0.18);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.5rem;
  transition: border-color .2s, background .2s;
}
.card:hover { border-color: rgba(184,146,69,0.4); background: rgba(255,255,255,0.3); }

/* ── Card label · plain small caps, no pill ── */
.card-label {
  display: block;
  background: none; color: var(--gold);
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; letter-spacing: .24em;
  margin-bottom: 8px; padding: 0;
  border-radius: 0;
}
.card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--green);
  margin-bottom: 0.65rem; line-height: 1.2; letter-spacing: .02em;
}
.card h3 em {
  font-style: italic;
  color: var(--green);
  background: linear-gradient(to bottom, transparent 78%, rgba(184,146,69,0.45) 78%);
  padding: 0 3px;
}
.card p { color: rgba(34,34,34,0.82); font-size: .95rem; line-height: 1.75; font-weight: 300; }
.card a { color: var(--green); text-decoration-color: rgba(85,115,48,0.3); transition: color .2s; }
.card a:hover { color: #3d5222; }

/* ── Inline content links · soft gold underline → oxblood on hover ── */
main a:not(.map-link) {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(184,146,69,0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s, text-decoration-thickness .2s;
}
main a:not(.map-link):hover {
  color: var(--red);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; clear: both; }
.card-grid .card { margin-bottom: 0; border-radius: 14px; }
.card-grid .card-full { grid-column: 1 / -1; border-radius: 14px; margin-top: 0; }
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; gap: 6px; }
  .card-grid .card { border-radius: 14px; }
  .card-grid .card-full { border-radius: 14px; }
}

/* ══ DETAILS ══ */
.detail-card { text-align: center; padding: 0.85rem 0.6rem; }
.detail-card h4 {
  font-size: 9px; text-transform: uppercase; letter-spacing: .24em;
  color: rgba(34,34,34,0.6); margin-bottom: 10px; font-weight: 400;
}
.detail-card p {
  font-family: 'Bodoni Moda', serif;
  color: var(--green); font-size: 1.1rem; font-weight: 300; line-height: 1.4;
}
.detail-card .sub { font-family: 'Jost', sans-serif; font-size: .8rem; margin-top: 4px; opacity: .65; letter-spacing: .05em; }
.map-wrap { text-align: center; margin-top: 2rem; }
.map-link {
  display: inline-block; margin-bottom: 2.25rem; padding: 11px 28px; border-radius: 99px;
  background: transparent; border: 1px solid rgba(85,115,48,0.35);
  color: var(--green); text-decoration: none; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  transition: border-color .25s, color .25s;
}
.map-link:hover { border-color: var(--green); color: #6a9040; }

/* ══ TIMELINE ══ */
.timeline { position: relative; padding-left: 2.5rem; margin-top: 0.5rem; }
.timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(to bottom, rgba(184,146,69,0.4), transparent);
}
.t-item { position: relative; margin-bottom: 6px; }
.t-item .card { border-radius: 14px; }
.t-dot {
  position: absolute; left: -2.5rem; top: 1.1rem;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(184,146,69,0.7);
  background: #F6EFF3;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; z-index: 1;
}
.t-time {
  font-size: 9px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}

/* ══ RSVP ══ */
#rsvp .rsvp-inner {
  background: transparent;
  border: 1px solid rgba(34,34,34,0.18);
  border-radius: 14px; padding: 1.5rem 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 540px) { #rsvp .rsvp-inner { padding: 1.25rem 1rem; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 9px;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(34,34,34,0.65); font-weight: 400; margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 0;
  background: transparent;
  border: none; border-bottom: 1px solid rgba(34,34,34,0.3);
  color: var(--ink); font-size: .95rem; font-family: 'Jost', sans-serif;
  outline: none; transition: border-color .25s; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--green); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }
.att-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.att-btn {
  flex: 1; min-width: 160px; padding: 11px 10px;
  background: transparent; border: 1px solid rgba(34,34,34,0.22);
  border-radius: 3px; color: rgba(34,34,34,0.7);
  font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 400;
  letter-spacing: .06em; cursor: pointer; text-align: center; transition: all .2s;
}
.att-btn:hover { border-color: var(--green); color: var(--ink); }
.att-btn.selected { border-color: var(--green); color: var(--ink); background: rgba(255,255,255,0.35); }
.btn-submit {
  width: 100%; margin-top: 1rem; padding: 14px;
  background: transparent; color: var(--ink);
  border: 1px solid rgba(34,34,34,0.4); border-radius: 99px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 400; cursor: pointer; transition: border-color .25s, color .25s;
}
.btn-submit:hover { border-color: var(--green); color: #6a9040; }
.rsvp-success {
  display: none; text-align: center; padding: 2rem 1.25rem;
  border: 1px solid rgba(34,34,34,0.18); border-radius: 14px; margin-top: 1rem;
}
.rsvp-success .glyph-big { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: .5; }
.rsvp-success h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem; font-weight: 300; color: var(--ink); margin-bottom: .5rem; letter-spacing: .03em;
}
.rsvp-success p { color: rgba(34,34,34,0.75); font-size: 1rem; line-height: 1.7; font-weight: 300; }

/* ══ FOOTER ══ */
footer {
  position: relative; z-index: 1;
  text-align: center; padding: 4rem 2rem 3rem;
  margin-top: 2rem;
  border-top: 0.5px solid rgba(34,34,34,0.14);
}
footer .f-names {
  font-family: 'Yesteryear', cursive;
  font-size: 3.5rem; font-weight: 400;
  color: #333c30; margin-bottom: .5rem; line-height: 1; letter-spacing: .04em;
}
footer .f-names em { color: var(--gold); }
footer p { color: rgba(34,34,34,0.65); font-size: .8rem; letter-spacing: .1em; line-height: 2.2; font-weight: 300; }
footer .f-glyph { display: block; margin: 1rem 0; color: rgba(184,146,69,0.75); font-size: .75rem; letter-spacing: .5em; }

/* ── Section feature image · organic blob, text flows around ── */
.section-img {
  float: right;
  width: 46%; max-width: 330px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0.25rem 0 1.25rem 2rem;
  border: none;
  border-radius: 58% 42% 53% 47% / 51% 56% 44% 49%;
  shape-outside: ellipse(48% 49%);
  shape-margin: 1.1rem;
  box-shadow: 0 22px 48px -26px rgba(85,115,48,0.45);
}
.section-img.img-left {
  float: left;
  margin: 0.25rem 2rem 1.25rem 0;
  border-radius: 42% 58% 47% 53% / 56% 51% 49% 44%;
}
@media (max-width: 640px) {
  .section-img, .section-img.img-left {
    float: none; display: block;
    width: 78%; max-width: 300px;
    margin: 0 auto 1.75rem;
    shape-outside: none;
  }
}

/* ── When · grouped date + times ── */
.when-card { text-align: center; }
.when-card .when-date {
  font-family: 'Bodoni Moda', serif; font-weight: 300;
  font-size: 1.5rem; color: var(--green); letter-spacing: .02em;
  margin-bottom: 1.1rem;
}
.when-times {
  display: flex; justify-content: center;
  border-top: 1px solid var(--border-soft); padding-top: 1.1rem;
}
.when-times .wt { flex: 1; }
.when-times .wt + .wt { border-left: 1px solid var(--border-soft); }
.when-times h4 {
  font-size: 9px; text-transform: uppercase; letter-spacing: .24em;
  color: rgba(34,34,34,0.6); margin-bottom: 8px; font-weight: 400;
}
.when-times p {
  font-family: 'Bodoni Moda', serif; color: var(--green);
  font-size: 1.2rem; font-weight: 300; line-height: 1.3;
}
.when-times .sub { font-family: 'Jost', sans-serif; font-size: .75rem; opacity: .6; letter-spacing: .04em; }
.where-name {
  font-family: 'Bodoni Moda', serif; font-weight: 300;
  font-size: 1.4rem; color: var(--green);
  letter-spacing: .02em; margin: 0.25rem 0 0.65rem;
}
.where-map { margin-top: 0.25rem; }

/* ── Simplified schedule ── */
.flow-list { list-style: none; max-width: 460px; margin: 0.5rem auto 0; }
.flow-list li {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 0.95rem 0; border-bottom: 0.5px solid var(--border-soft);
}
.flow-list li:last-child { border-bottom: none; }
.flow-list .flow-time {
  flex-shrink: 0; width: 80px; text-align: right;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; padding-top: 4px;
}
.flow-list .flow-what {
  font-family: 'Bodoni Moda', serif; font-weight: 300;
  font-size: 1.2rem; color: var(--green); letter-spacing: .02em;
}
.flow-list .flow-what span {
  display: block; font-family: 'Jost', sans-serif;
  font-size: .82rem; color: rgba(34,34,34,0.6);
  letter-spacing: .02em; margin-top: 3px; font-weight: 300;
}

/* ── Callout ── */
.callout {
  text-align: center; margin-top: 2rem;
  border: 1px solid rgba(184,146,69,0.4);
  border-radius: 14px; padding: 1.5rem 1.75rem;
  background: rgba(184,146,69,0.05);
}
.callout p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.25rem; font-weight: 300;
  color: rgba(34,34,34,0.82); line-height: 1.6; max-width: none;
}
.callout a { color: var(--green); }

/* ── Story section · text sits in clean column to the right of the image ── */
#story .section-sub {
  overflow: hidden;
}

/* ── FAQ accordion ── */
.faq-list { margin-top: 0.5rem; }
details.faq-item {
  border: 1px solid rgba(34,34,34,0.18);
  border-radius: 14px; margin-bottom: 6px;
  padding: 0 1.2rem; transition: border-color .2s, background .2s;
}
details.faq-item[open] { border-color: rgba(184,146,69,0.4); background: rgba(255,255,255,0.3); }
details.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding: 1.1rem 0;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; flex-shrink: 0;
  font-family: 'Jost', sans-serif; font-size: 1.4rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
details.faq-item[open] summary::after { content: '\2013'; }
.faq-cat {
  display: block; color: var(--gold);
  font-size: 10px; font-weight: 400; text-transform: uppercase;
  letter-spacing: .24em; margin-bottom: 6px;
}
.faq-question {
  font-family: 'Bodoni Moda', serif; font-weight: 300;
  font-size: 1.2rem; color: var(--green); letter-spacing: .02em; line-height: 1.25;
}
details.faq-item .faq-answer {
  color: rgba(34,34,34,0.82); font-size: .95rem; line-height: 1.75;
  font-weight: 300; padding: 0 0 1.2rem;
}
details.faq-item .faq-answer a { color: var(--green); text-decoration-color: rgba(85,115,48,0.3); }
